home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / procssng / ccs / ccs-11tl.lha / lbl / xview / genial / func / splinefunc.c < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-14  |  390 b   |  36 lines

  1. /*
  2.  * spline.c -- routines for splines for labelling images
  3.  *
  4.  */
  5.  
  6. #include "display.h"
  7. #include "ui.h"
  8. #include "log.h"
  9. #include "reg.h"
  10.  
  11. spline_init()
  12. {
  13.   setrtype(SPLINE);
  14.  
  15.   clear_info();
  16.   lab_info("Select points for spline",1);
  17.   lab_info("Hit <eval> when finished",2);
  18.  
  19.   return 0;
  20. }
  21.  
  22. spline_eval()
  23. {
  24.   clear_info();
  25.  
  26.   return 0;
  27. }
  28.  
  29. spline_clear()
  30. {
  31.   clear_info();
  32.  
  33.   return 0;
  34. }
  35.  
  36.